-
Notifications
You must be signed in to change notification settings - Fork 0
Release/v1.0.0 #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: CØDE N!NJΔ <[email protected]>
Consolidate and clarify the explanations of Aggregate and Saga in the README. Signed-off-by: CØDE N!NJΔ <[email protected]>
Signed-off-by: CØDE N!NJΔ <[email protected]>
Updated image dimensions in README for better display. Signed-off-by: CØDE N!NJΔ <[email protected]>
Signed-off-by: CØDE N!NJΔ <[email protected]>
Added architecture section and image to README. Signed-off-by: CØDE N!NJΔ <[email protected]>
Added a section for NuGet packages with details on versions and frameworks. Signed-off-by: CØDE N!NJΔ <[email protected]>
Signed-off-by: CØDE N!NJΔ <[email protected]>
Added Azure cloud support information to README. Signed-off-by: CØDE N!NJΔ <[email protected]>
Updated NuGet version badges for SourceFlow packages in the README. Signed-off-by: CØDE N!NJΔ <[email protected]>
Updated .NET version badges and added .NET 10 support. Signed-off-by: CØDE N!NJΔ <[email protected]>
Signed-off-by: CØDE N!NJΔ <[email protected]>
Updated NuGet package details with new versions and links. Signed-off-by: Najaf Shaikh <[email protected]>
Updated image dimensions in architecture overview. Signed-off-by: CØDE N!NJΔ <[email protected]>
Clarified terminology and updated descriptions for projections and stores. Signed-off-by: CØDE N!NJΔ <[email protected]>
Signed-off-by: CØDE N!NJΔ <[email protected]>
Signed-off-by: CØDE N!NJΔ <[email protected]>
Added versioning information for v1.0.0 and v2.0.0, including new components like Dispatcher and Listeners. Signed-off-by: CØDE N!NJΔ <[email protected]>
Updated descriptions for Aggregate, Saga, Command Dispatcher, and Event Listeners in the README. Signed-off-by: CØDE N!NJΔ <[email protected]>
Updated terminology for clarity and consistency in the README. Signed-off-by: CØDE N!NJΔ <[email protected]>
Signed-off-by: CØDE N!NJΔ <[email protected]>
Nshai
previously approved these changes
Nov 29, 2025
This commit addresses jscpd (code duplication) CI/CD failures by refactoring duplicated code across multiple files: **Major Changes:** - **DbContextMigrationHelper.cs**: Extracted common table creation logic into CreateTablesCore method, reducing duplication from 23.57% - **CommandStoreAdapter.cs**: Refactored telemetry wrapping and deserialization logic, reducing duplication from 19.14% - **DomainTelemetryService.cs**: Extracted exception handling into SetActivityException helper method, reducing duplication from 11.07% - **ByteArrayPool.cs**: Refactored serialization methods to use SerializeCore helper, reducing duplication from 10.5% - **DatabaseTelemetryService.cs**: Added SetActivityException helper method, reducing duplication from 7.69% - **EfEntityStore.cs & EfViewModelStore.cs**: Created EfStoreBase abstract base class to share common persistence logic, reducing duplication from 7.62% **Technical Details:** - All changes maintain backward compatibility - No API changes to public interfaces - Test suite passes with all existing tests - Code formatting applied via dotnet format 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Added null checks for entity/viewmodel parameters before accessing their Id property in the Persist methods. This fixes test failures where ArgumentNullException was expected but NullReferenceException was thrown instead. Fixes: - EfEntityStore.Persist: Added null check before calling PersistCore - EfViewModelStore.Persist: Added null check before calling PersistCore Test Results: - All 129 tests now pass (92 Core + 37 EF) - Fixed: Persist_NullEntity_ThrowsArgumentNullException - Fixed: Persist_NullViewModel_ThrowsArgumentNullException 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Nshai
approved these changes
Nov 29, 2025
sensei-qoder
approved these changes
Nov 29, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changelog
1.0.0 - 2025-01-29
Added
Core Framework (SourceFlow.Net)
Entity Framework Store Provider (SourceFlow.Stores.EntityFramework)
ICommandStoreimplementation using Entity Framework CoreIEntityStoreimplementation using Entity Framework CoreIViewModelStoreimplementation using Entity Framework CoreArchitecture & Patterns
Documentation
Infrastructure